home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / ViePratique / gnucash / gnucash-2.6.5-setup.exe / {app} / share / aqbanking / imexporters / csv / profiles / comdirect.conf < prev    next >
Text File  |  2014-12-19  |  1KB  |  48 lines

  1.  
  2. char name="comdirect"
  3. char shortDescr="Profile for Comdirect CSV files"
  4. char version="5.4.2"
  5. char longDescr="This profile supports the CSV format used by the ComDirect bank"
  6. int import="1"
  7. #int export="1"
  8.  
  9. char type="csv"
  10. char groupNames="transaction", "transfer", "debitnote", "line"
  11. char dateFormat="DD.MM.YYYY"
  12. int utc="0"
  13.  
  14. params {
  15.   
  16.   # number of lines to ignore
  17.   int ignoreLines="22"
  18.   
  19.   # if 1 then values are quoted
  20.   quote="1"
  21.   
  22.   # if 1 then a title line will be written containing the names of each
  23.   # column
  24.   title="1"
  25.   
  26.   # special values are "TAB" and "SPACE"
  27.   delimiter=";"
  28.   
  29.   # this is the group name looked for in the given data to GWEN_CSV_Write
  30.   # if not given then all groups match
  31.   #group="transaction"
  32.   
  33.   # this group contains the definition for each column
  34.   # each variable in this group has its number as name
  35.   # you can use index variables in the names (using square brackets)
  36.   # the value of each of these variables is the name of a variable to be looked
  37.   # up in the data given to GWEN_CSV_Write
  38.   columns {
  39.     1="date"
  40.     2="valutadate"
  41.     3="purpose[0]"
  42.     4="purpose[1]"
  43.     5="value/value"
  44.   } # columns
  45.  
  46. } # params
  47.  
  48.